翻訳と辞書
Words near each other
・ Datacoup
・ Data stream mining
・ Data striping
・ Data strobe encoding
・ Data structure
・ Data structure alignment
・ Data structure diagram
・ Data synchronization
・ Data system
・ Data systems technician
・ Data terminal equipment
・ Data Terminal Ready
・ Data theft
・ Data thinking
・ Data Toolbar
Data transfer object
・ Data transformation
・ Data transformation (statistics)
・ Data Transformation Services
・ Data Transmission
・ Data transmission
・ Data transmission circuit
・ Data Transmission Network
・ Data Transport Utility
・ Data truncation
・ Data Tutashkhia
・ Data type
・ Data Universal Numbering System
・ Data URI scheme
・ Data validation


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Data transfer object : ウィキペディア英語版
Data transfer object

Data transfer object (DTO)〔MSDN (2010). Data Transfer Object. Microsoft MSDN Library. Retrieved from https://msdn.microsoft.com/en-us/library/ms978717.aspx.〕〔Fowler, Martin (2010). Data Transfer Object. Patterns of Enterprise Application Architecture. Retrieved from http://martinfowler.com/eaaCatalog/dataTransferObject.html.〕 is an object that carries data between processes. The motivation for its use has to do with the fact that communication between processes is usually done resorting to remote interfaces (e.g. web services), where each call is an expensive operation.〔 Because the majority of the cost of each call is related to the round-trip time between the client and the server, one way of reducing the number of calls is to use an object (the DTO) that aggregates the data that would have been transferred by the several calls, but that is served by one call only.〔
The difference between data transfer objects and business objects or data access objects is that a DTO does not have any behavior except for storage and retrieval of its own data (accessors and mutators).
DTOs are simple objects that should not contain any business logic that would require testing.〔
This pattern is often incorrectly used outside of remote interfaces. This has triggered a response from its author〔LocalDTO. Retrieved from http://martinfowler.com/bliki/LocalDTO.html.〕 where he reiterates that the whole purpose of DTOs is to shift data in expensive remote calls.
==Terminology==
A value object is not a DTO. The two terms have been conflated by Java developers in the past.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Data transfer object」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.